@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

/* -------------------- */
/* ROOT VARIABLES */
/* -------------------- */

:root {
  --max-width: 1440px;
  --padding-x: clamp(1rem, 4vw, 4rem);
  --section-space: clamp(3rem, 7vw, 5rem);

  --color-bg: #ffffff;
  --color-text: #111111;
  --color-primary: #005fa8;
  --color-accent: #f45b1f;

  --sky-color-bg: #eaf3ff;

  --font-body: "Poppins", sans-serif;

  --title-font: clamp(2rem, 4.2vw, 4.6rem);
}

/* -------------------- */
/* BASE ELEMENTS */
/* -------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
}

/* -------------------- */
/* LAYOUT UTILITIES */
/* -------------------- */

.main {
  width: 100%;
}

.container {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: var(--padding-x);
}

.section {
  padding-block: var(--section-space);
}

/* .lottie-icon {
  width: clamp(60px, 5vw, 90px);
  height: clamp(60px, 5vw, 90px);
  object-fit: cover;
} */

.role-card .icon-wrap {
  width: fit-content;
  line-height: 0;
}
.lottie-icon {
  width: clamp(95px, 8vw, 130px);
  height: clamp(95px, 8vw, 130px);
  object-fit: contain;
  display: block;

  image-rendering: auto;
  filter: contrast(1.08) saturate(1.08);
  transform: translateZ(0);
}

/* -------------------- */
/* HEADER CSS */
/* -------------------- */

.site-header {
  width: 100%;
  background: #ffffff;
  z-index: 1000;
}

.nav-wrap {
  width: 100%;
  min-height: clamp(70px, 7vw, 95px);
  padding-inline: var(--padding-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 3.5rem);
}

.site-nav a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #111111;
  transition: 0.3s ease;
}
.site-logo img {
  width: 170px;
}
.site-nav a:hover {
  color: var(--color-primary);
}

.login-btn {
  background: var(--color-primary);
  color: #ffffff !important;
  border-radius: 999px;
  padding: 0.85rem 2rem;
}

.menu-toggle {
  display: none;
  font-size: 1.4rem;
  color: var(--color-primary);
}

/* close button inside menu */
.menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.6rem;
  color: #111;
  display: none;
}

/* mobile */
@media (max-width: 900px) {
  .menu-close {
    display: block;
  }
}

/* -------------------- */
/* RESPONSIVE NAVBAR */
/* -------------------- */

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(80%, 340px);
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.08);
    transition: 0.35s ease;
    z-index: 999;
  }

  .site-nav.active {
    right: 0;
  }

  .site-nav a {
    font-size: 0.9rem;
  }
}

/* -------------------- */
/* FLOATING CONTACT */
/* -------------------- */

.floating-contact-wrap {
  position: fixed;
  right: clamp(0.8rem, 2vw, 1.5rem);
  bottom: clamp(1rem, 2vw, 1.5rem);

  display: flex;
  flex-direction: column;
  gap: 0.8rem;

  z-index: 9999;
}

.floating-contact-btn {
  display: flex;
  align-items: center;
  gap: 0.7rem;

  min-width: 56px;
  height: 56px;

  padding-inline: 1rem;

  border-radius: 999px;

  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;

  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);

  transition: 0.3s ease;
}

.floating-contact-btn i {
  font-size: 1.15rem;
}

.call-btn {
  background: var(--color-primary);
}

.whatsapp-btn {
  background: #25d366;
}

.floating-contact-btn:hover {
  transform: translateY(-4px) scale(1.03);
}

/* pulse animation */

.whatsapp-btn {
  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* -------------------- */
/* MOBILE */
/* -------------------- */

@media (max-width: 640px) {
  .floating-contact-btn {
    width: 56px;
    min-width: 56px;

    justify-content: center;
    padding-inline: 0;
  }

  .floating-contact-btn span {
    display: none;
  }
}

/* -------------------- */
/* FOOTER */
/* -------------------- */

.site-footer {
  background: #0f172a; /* dark but clean */
  color: #cbd5f5;
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}

.footer-col h4 {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 600;
}

/* .footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.8rem;
} */
.footer-logo {
  width: 200px;
  margin-left: -20px;
}

.app_logos{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.app_logos img{
    width: 80px;
    cursor: pointer;
}

.footer-col p {
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  color: #cbd5f5;
  transition: 0.3s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

/* social */
.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.9rem;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: var(--color-primary);
}

/* bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding: 1rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: #94a3b8;
}

/* -------------------- */
/* RESPONSIVE */
/* -------------------- */

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-col {
    /*text-align: center;*/
  }

  .footer-social {
    justify-content: center;
  }
}
.middle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
